.mobile-menu .menu-link:focus {
  outline: none;
}
.mobile-menu {
  font-family: "Noto Sans", sans-serif;
  position: relative;
  max-width: 100%;
}
.menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  z-index: -1;
}
.menu-panel.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.menu-header {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  min-height: 24px;
}
.back-btn {
  margin-right: 10px;
  cursor: pointer;
  font-size: 24px;
}
.menu-title {
  font-size: 22px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 20px 0;
  color: #222;
  font-size: 20px;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}
.menu-link:hover {
  color: #b0272b;
}
.menu-link.bold {
  font-weight: bold;
}
.menu-list.sub .menu-link {
  font-size: 18px;
}
.menu-search {
  margin-top: 30px;
}
.menu-search form {
  display: flex;
  align-items: center;
}
.menu-search-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  margin-right: 10px;
}
.menu-search-btn {
  background-color: #5a5a5a;
  color: #fff;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.menu-search-input, .menu-search-btn {
  border-radius: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}
.menu-search-btn:hover {
  background-color: #444;
}
.menu-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 容器设置 */
  .custom-hamburger {
  position: relative;
  top: 0px;
  left: 20px;
    width: 30px;
    height: 24px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .custom-hamburger .custom-bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.4s ease, top 0.4s ease;
    position: relative;
    transform-origin: center center;
  }

  .custom-hamburger.active .custom-bar1 {
    transform: rotate(45deg);
    top: 10.5px;
  }

  .custom-hamburger.active .custom-bar2 {
    transform: rotate(-45deg);
    top: -10.5px;
  }

  /* 菜单区域 */
  .custom-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    background: white;
  }

  .custom-mobile-menu .custom-menu-inner {
    padding-top: 50px;
     padding-left: 30px;
    text-align: center;
  }


